home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 5 / MacMania 5.toast / / Tools&Utilities / TimGA 1.1 / Graphs / (1) Small graphs / 01 - Binary Tree next >
Encoding:
Text File  |  1995-08-02  |  222 b   |  22 lines  |  [TEXT/TiGA]

  1.  
  2. |V|:    15        // Number of nodes
  3. |E|:    14        // Number of edges
  4.  
  5.     1    2        // Edges are represented as pairs of node numbers...
  6.     1    3
  7.     2    4
  8.     2    5
  9.     3    6
  10.     3    7
  11.     4    8
  12.     4    9
  13.     5    10
  14.     5    11
  15.     6    12
  16.     6    13
  17.     7    14
  18.     7    15
  19.  
  20. ---
  21. This graph is a binary tree.
  22.